我无法通过 HTTPS 克隆我的存储库:
$ git clone https://github.com/walterjwhite/project.configuration.git Initialized empty Git repository in ./project.configuration/.git/ error: Failed connect to github.com:443; Connection refused while accessing https://github.com/walterjwhite/project.configuration.git/info/refs fatal: HTTP request failed
我已经用我的登录名和密码以及我要连接的机器或服务器配置了 .netrc。
正如您在GitHub 支持中看到的那样,Scott Schacon本人建议:
所以我猜你.netrc是不正确的还是什么? 尝试从您的信息中删除信息.netrc并首先进行克隆(因为它是公共回购)。
.netrc
如果不是 GitHub 服务器问题,则可能是您的防火墙。 和/或您的代理 ( git config --global http.proxy http://user:password@proxy:xxx)。
git config --global http.proxy http://user:password@proxy:xxx